home *** CD-ROM | disk | FTP | other *** search
- #include <exec/libraries.h>
- #include <proto/exec.h>
-
- struct Library *MathIeeeSingTransBase = NULL;
- extern unsigned long _MathIeeeSingTransBaseVer;
-
- void _INIT_5_MathIeeeSingTransBase()
- {
- if (!(MathIeeeSingTransBase = OpenLibrary("mathieeesingtrans.library",_MathIeeeSingTransBaseVer)))
- exit(20);
- }
-
- void _EXIT_5_MathIeeeSingTransBase()
- {
- if (MathIeeeSingTransBase)
- CloseLibrary(MathIeeeSingTransBase);
- }
-